#/* Copyright (c) 1994 Burra Gopal, Udi Manber. All Rights Reserved. */
# Makefile for the compress library -- agrep should be linked with it in case
# it wants to search for patterns in a compressed file.
# You might have to change these depending on your machine configuration.
# AR and RANLIB are the library-archive programs. On Solaris, RANLIB is not
# required (define it to true) and AR is in /usr/ccs/bin/ar (on our machine!).
CC = gcc -m486
AR = ar #/usr/ccs/bin/ar #for Solaris
RANLIB = ranlib #true #for Solaris
SHELL = /bin/sh
# Define HAVE_DIRENT_H to be 1 when you don't have <sys/dir.h> else define it to be 0 (in this case, one of the other 3 flags may need to be defined to be 1).
HAVE_DIRENT_H = 1
HAVE_SYS_DIR_H = 0
HAVE_SYS_NDIR_H = 0
HAVE_NDIR_H = 0
# Define UTIME to be 1 if you have the utime() routine on your system. Else define it to be 0.
UTIME = 1
# Define ISO_CHAR_SET to be 1 if you want to use the international 8bit character set. Else define it to be 0.
ISO_CHAR_SET = 0
# YOU DON'T HAVE TO CHANGE ANYTHING BELOW THIS LINE
INDEXDIR = ../index
AGREPDIR = ../agrep
LIBDIR = ../lib
BIN = ../bin
TEMPLATEDIR = ../libtemplate
all: lib tbuild cast uncast test
cp tbuild $(BIN)/.
cp cast $(BIN)/.
cp uncast $(BIN)/.
# Include flags is not a part of CLFAGS and LINKFLAGS since path names from subdirs can be different